internal/reflectlite.Value.typ (field)

15 uses

	internal/reflectlite (current package)
		value.go#L37: 	typ *rtype
		value.go#L92: 	if v.typ.size != goarch.PtrSize || !v.typ.pointers() {
		value.go#L103: 	t := v.typ
		value.go#L230: 		if v.typ.NumMethod() == 0 {
		value.go#L251: 		tt := (*ptrType)(unsafe.Pointer(v.typ))
		value.go#L333: 		tt := (*arrayType)(unsafe.Pointer(v.typ))
		value.go#L351: 	if v.typ == nil {
		value.go#L354: 	return v.typ.NumMethod()
		value.go#L367: 	x = x.assignTo("reflectlite.Set", v.typ, target)
		value.go#L369: 		typedmemmove(v.typ, v.ptr, x.ptr)
		value.go#L382: 	return v.typ
		value.go#L417: 	case directlyAssignable(dst, v.typ):
		value.go#L424: 	case implements(dst, v.typ):
		value.go#L444: 	panic(context + ": value of type " + v.typ.String() + " is not assignable to type " + dst.String())